home *** CD-ROM | disk | FTP | other *** search
- /*
- * linux/fs/fifo.c
- *
- * written by Paul H. Hargrove
- *
- * This file is subject to the terms and conditions of the GNU General Public
- * License. See the file README.legal in the main directory of this archive
- * for more details.
- */
-
- #include <linux/sched.h>
- #include <linux/minix_fs.h>
-
- extern struct file_operations def_fifo_fops;
-
- struct inode_operations minix_fifo_inode_operations = {
- &def_fifo_fops, /* default file operations */
- NULL, /* create */
- NULL, /* lookup */
- NULL, /* link */
- NULL, /* unlink */
- NULL, /* symlink */
- NULL, /* mkdir */
- NULL, /* rmdir */
- NULL, /* mknod */
- NULL, /* rename */
- NULL, /* readlink */
- NULL, /* follow_link */
- NULL, /* bmap */
- NULL, /* truncate */
- NULL /* permission */
- };
-